home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-1.iso / Files / Internet / Web Things / HTML.edit 1.5b1.sit / HTML.edit.1.5b1 / HTML.edit v1.5b1 / HTML.edit v1.5b1.rsrc / TEXT_31353_Special Characters.txt < prev    next >
Encoding:
Text File  |  1994-11-30  |  1.8 KB  |  57 lines

  1.  
  2. National Center for Supercomputing Applications
  3. A Beginner's Guide to HTML
  4.  
  5. Special Characters
  6.  
  7. Escape Sequences
  8.  
  9. Four characters of the ASCII character set -- the left angle bracket (<), the right angle bracket (>), the ampersand (&) and the double quote(") -- have special meaning within HTML and therefore cannot be used "as is'' in text. (The angle brackets are used to indicate the beginning and end of HTML tags, and the ampersand is used to indicate the beginning of an escape sequence.)  
  10.  
  11. To use one of these characters in an HTML document, you must enter its escape sequence instead:  
  12.  
  13.    the escape sequence for < 
  14.    the escape sequence for > 
  15.    the escape sequence for & 
  16.    the escape sequence for " 
  17.  
  18. Additional escape sequences support accented characters. For example: 
  19.  
  20. ö 
  21.    the escape sequence for a lowercase o with an umlaut: √∂ 
  22. ñ 
  23.    the escape sequence for a lowercase n with an tilde: √± 
  24. È 
  25.    the escape sequence for an uppercase E with a grave accent: √®
  26.  
  27. A full list of supported characters can be found at CERN. 
  28.  
  29. NOTE: Unlike the rest of HTML, the escape sequences are case sensitive. You
  30. cannot, for instance, use < instead of <. 
  31.  
  32.  
  33. Forced Line Breaks
  34.  
  35. The <BR> tag forces a line break with no extra space between lines. (By contrast,
  36. most browsers format the <P> paragraph tag with an additional blank line to more
  37. clearly indicate the beginning the new paragraph.) 
  38.  
  39. One use of <BR> is in formatting addresses: 
  40.  
  41.     National Center for Supercomputing Applications<BR>
  42.     605 East Springfield Avenue<BR>
  43.     Champaign, Illinois 61820-5518<BR>
  44.  
  45.  
  46. Horizontal Rules
  47.  
  48. The <HR> tag produces a horizontal line the width of the browser window. 
  49.  
  50. back to Character Formatting
  51. on to In-Line Images
  52. return to Beginner's Guide  Contents.
  53.